home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 56804 / 56804.xpi / chrome / content / options.xul < prev    next >
Extensible Markup Language  |  2010-01-31  |  5KB  |  97 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
  4. <?xml-stylesheet href="chrome://seostatus/skin/seostatus.css" type="text/css"?>
  5.  
  6. <dialog id="seostatus-options-dialog" title="seostatus Options"
  7.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  8.         buttons="accept,cancel"
  9.         orient="vertical"        
  10.         onload="com.seostatus.options.STB_OptionsLoad();"
  11.         ondialogaccept="com.seostatus.options.STB_Options_accept();"
  12.         width="670"
  13.         height="400">
  14.         
  15.     <script type="application/x-javascript" src="chrome://seostatus/content/options.js" /> 
  16.  
  17.   <tabbox id="stb_options_tab_box" class="text">
  18.  
  19.     <tabs>
  20.       <tab id="stb_options_tab" label="Options"/>
  21.       <tab id="stb_alexa_tab" label="Alexa" />
  22.     </tabs>
  23.     
  24.     <tabpanels flex="1">
  25.       <tabpanel id="stb_options_panel" orient="vertical" flex="1">
  26.             <groupbox>
  27.                 <caption label="Where Would You Like the PageRank and Alexa Meters?"/>
  28.                 <radiogroup id="STB_pr_alexa_gb">
  29.                       <radio id="STR_PR_Toolbar" label="On the toolbar (default)."/>
  30.                       <radio id="STR_PR_StatusBar" label="On the statusbar."/>
  31.                       <radio id="STR_PR_None" label="Do not display PageRank and Alexa meters."/>
  32.                     </radiogroup>
  33.                     
  34.                 
  35.               </groupbox>    
  36.               
  37.               <groupbox>
  38.                 <caption label="Whee Would You Like the SEO Toolbar SEO Tools?"/>
  39.                 <radiogroup id="STB_tools_gb">
  40.                       <radio id="STR_Tools_Toolbar" label="On the toolbar (default)."/>
  41.                       <radio id="STR_Tools_None" label="Do not display SEO tools."/>
  42.                     </radiogroup>
  43.         </groupbox>        
  44.               
  45.       </tabpanel>
  46.       
  47.        <tabpanel orient="vertical" flex="1">
  48.     
  49.        <description value= "In order to have an Alexa meter next to the PageRank meter, you must agree to the" />
  50.        <description value= "Alexa User Agreement. "/>
  51.        <description value = " "/>
  52.        <description style="font-weight: bold;" value = "Please check this box to enable Alexa reporting on your toolbar."/>
  53.  
  54.        <checkbox label="I agree to the terms of this license. Enable the Alexa Meter" id="Alexa_Agree" style="float:center;" />   
  55.        <description value = " "/>
  56.        <groupbox>
  57.           <caption label="Alexa User Agreement" />             
  58.     <hbox>
  59.     <scrollbox height="85" width="570" style='overflow: auto;'>
  60.       <vbox style="margin: 10px;">
  61.           <description value = "The SEO Toolbar Service that you are using exchanges data with Alexa Internet,"/>
  62.           <description value = " Inc. (Alexa) in order to provide you with information about the web pages you view."/>
  63.           <description value = " "/>
  64.           <description value = "FOR  EVERY  WEB  PAGE  YOU  VISIT  WHILE  USING  THE  SEO STATUS  TOOLBAR  SERVICE,"/>
  65.           <description value = "CERTAIN  INFORMATION, INCLUDING  YOUR IP ADDRESS, THE URL  OF THE WEB PAGE "/>
  66.           <description value = "YOU  VISIT, AND GENERAL INFORMATION ABOUT YOUR BROWSER AND COMPUTER'S "/>
  67.           <description value = "OPERATING SYSTEM, WILL BE TRANSMITTED FROM YOUR COMPUTER TO ALEXA."/>
  68.           <description value = " "/>
  69.           <description value = "SOME OF THE URLS YOU VISIT, WHICH ARE TRANSMITTED TO ALEXA, WILL CONTAIN"/>
  70.           <description value = "INFORMATION THAT IS PERSONALLY IDENTIFIABLE."/>
  71.           <description value = " "/>
  72.           <description value = "Alexa does not attempt to analyze web usage data to determine the identity"/>
  73.           <description value ="of any SEO Toolbar Service user. Alexa aggregates and analyzes the information"/>
  74.           <description value ="it collects to improve its service and to prepare reports about aggregate web usage."/>
  75.           <description value = " "/>
  76.           <description value = "Information transmitted to Alexa through the SEO Toolbar Service is subject"/>
  77.           <description value ="to Alexa Privacy Policy, as that policy applies to information collected through"/>
  78.           <description value ="the Alexa Toolbar Service. Please read the Alexa Privacy Policylocated at"/>
  79.           <description value ="www.alexa.com to understand how Alexa uses the information collected through"/>          
  80.           <description value = "the SEO Toolbar Service. "/>
  81.           <description value = " "/>
  82.       <label value = "Click here if you would like to exclude certain URL's from being passed to Alexa." class="text-link" onclick="com.seostatus.options.openURLExclude();" />
  83.         </vbox>
  84.     </scrollbox>
  85.     </hbox>
  86.     <hbox>
  87.         <description class="agreement" value =""/>
  88.     </hbox>
  89.           </groupbox>  
  90.  
  91.       </tabpanel>
  92.       
  93.     </tabpanels>
  94.   </tabbox>
  95.         
  96. </dialog>
  97.